home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / others / ole_101.zip / PATRON.ZIP / OCLIENT.RC < prev    next >
Text File  |  1992-04-13  |  4KB  |  93 lines

  1. /*
  2.  * OCLIENT.RC
  3.  *
  4.  * OLE-specific resources such dialogs and strings for the user
  5.  * interface and clipboard formats.
  6.  *
  7.  * Note that this file only #include's "oclient.h" as we expect to
  8.  * be RCINCLUDE'd from another file.
  9.  *
  10.  * Copyright(c) Microsoft Corp. 1992 All Rights Reserved
  11.  */
  12.  
  13.  
  14. //#include "oclient.h"
  15.  
  16.  
  17. /*
  18.  * These strings are loaded into memory on startup and referenced
  19.  * through a global array of pointers.
  20.  */
  21.  
  22. STRINGTABLE
  23.     BEGIN
  24.      IDS_NATIVE,         "Native"
  25.      IDS_OWNERLINK,      "OwnerLink"
  26.      IDS_OBJECTLINK,     "ObjectLink"
  27.      IDS_STDFILEEDITING, "StdFileEditing"
  28.      IDS_AUTOMATIC,      "Automatic"
  29.      IDS_MANUAL,         "Manual"
  30.      IDS_UNAVAILABLE,    "Unavailable"
  31.      IDS_STATIC,         "Static"
  32.      IDS_PACKAGE,        "Package"
  33.      IDS_UPDATELINKS0,   "The file contains links to other\ndocuments.\n\nUpdate links now?"
  34.      IDS_UPDATELINKS1,   "The selected links to %s have been\nupdated.  %s contains "
  35.      IDS_UPDATELINKS2,   "additional links\nto %s.\n\nUpdate additional links?"
  36.      IDS_CHANGELINK,     "Change Link"
  37.      IDS_CHANGELINKS1,   "The selected links to %s have been\nchanged.  %s contains "
  38.      IDS_CHANGELINKS2,   "additional links\nto %s.\n\nChange additional links?"
  39.      IDS_INSERTTITLE,    "Insert Object"
  40.      IDS_NOINSERT,       "Could not create a new object or start object server."
  41.      IDS_VERBEDIT,       "Edit"
  42.      IDS_OBJECT,         "Object"
  43.      IDS_OBJECTBUSY,     "The action cannot be completed because the object is busy."
  44.      IDS_OLEERROR,       "OLE Error"
  45.      IDS_OLEERRORMSG,    "Method:  %d, Error: %d"
  46.      IDS_UPDATEMSG,      "Updating Links"
  47.     END
  48.  
  49.  
  50. //rcinclude oclient.dlg
  51.  
  52. IDD_INSERTOBJECT DIALOG 19, 30, 160, 90
  53. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  54. CAPTION "Insert Object"
  55. FONT 8, "Helv"
  56. BEGIN
  57.     LTEXT           "&Object Type:", ID_NULL, 4, 4, 52, 8
  58.     LISTBOX         ID_OBJECTLIST, 4, 16, 114, 76, LBS_SORT | WS_VSCROLL | 
  59.                     WS_TABSTOP
  60.     DEFPUSHBUTTON   "OK", IDOK, 121, 9, 36, 14
  61.     PUSHBUTTON      "&Cancel", IDCANCEL, 121, 26, 36, 14
  62. END
  63.  
  64. IDD_LINKS DIALOG 9, 24, 268, 91
  65. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  66. CAPTION "Links"
  67. BEGIN
  68.     LTEXT           "&Links:", ID_NULL, 2, 3, 27, 8
  69.     LISTBOX         ID_LINKLIST, 2, 14, 223, 43, LBS_USETABSTOPS | 
  70.                     LBS_EXTENDEDSEL | WS_VSCROLL | WS_TABSTOP
  71.     LTEXT           "Update:", ID_NULL, 3, 58, 44, 8
  72.     CONTROL         "Au&tomatic", ID_UPDATEAUTO, "Button", 
  73.                     BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 31, 56, 46, 12
  74.     CONTROL         "&Manual", ID_UPDATEMANUAL, "Button", BS_AUTORADIOBUTTON | 
  75.                     WS_TABSTOP, 78, 56, 42, 12
  76.     PUSHBUTTON      "&Update Now", ID_UPDATENOW, 17, 71, 48, 14, WS_GROUP
  77.     PUSHBUTTON      "&Cancel Link", ID_CANCELLINK, 73, 71, 45, 14
  78.     PUSHBUTTON      "C&hange Link...", ID_CHANGELINK, 126, 71, 52, 14
  79.     PUSHBUTTON      "OK", IDOK, 231, 6, 32, 14
  80.     PUSHBUTTON      "Cancel", IDCANCEL, 231, 24, 32, 14
  81. END
  82.  
  83. IDD_BADLINKS DIALOG 9, 22, 154, 48
  84. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  85. CAPTION "Patron"
  86. BEGIN
  87.     LTEXT           "Some linked files were unavailable and could not be updated.", 
  88.                     ID_NULL, 31, 5, 120, 24, NOT WS_GROUP
  89.     PUSHBUTTON      "OK", IDOK, 39, 30, 36, 12
  90.     PUSHBUTTON      "&Links...", ID_LINKS, 81, 30, 36, 12
  91.     ICON            0, ID_ICONEX, 8, 6, 16, 16
  92. END
  93.